home *** CD-ROM | disk | FTP | other *** search
/ Reverse Code Engineering RCE CD +sandman 2000 / ReverseCodeEngineeringRceCdsandman2000.iso / RCE / Ebooks / Thinking in C++ V2 / C14 / Microsoft.makefile < prev    next >
Encoding:
Makefile  |  2000-05-25  |  2.8 KB  |  125 lines

  1. # From Thinking in C++, 2nd Edition
  2. # At http://www.BruceEckel.com
  3. # (c) Bruce Eckel 1999
  4. # Copyright notice in Copyright.txt
  5. # Automatically-generated MAKEFILE 
  6. # For examples in directory C14
  7. # using the Microsoft compiler
  8. # Note: does not make files that will 
  9. # not compile with this compiler
  10. # Invoke with: make -f Microsoft.makefile
  11.  
  12. # Note: this requires the service Pack 3 from
  13. # www.Microsoft.com for successful compilation!
  14. CPP = cl
  15. CPPFLAGS = -GX -GR
  16. OFLAG = -o
  17. .SUFFIXES : .obj .cpp .c
  18. .cpp.obj :
  19.     $(CPP) $(CPPFLAGS) -c $<
  20. .c.obj :
  21.     $(CPP) $(CPPFLAGS) -c $<
  22.  
  23. all: \
  24.     Compose.exe \
  25.     Compose2.exe \
  26.     Inherit.exe \
  27.     Combined.exe \
  28.     Order.exe \
  29.     Hide.exe \
  30.     Ninherit.exe \
  31.     Car.exe \
  32.     InheritStack.exe \
  33.     Privinh.exe \
  34.     Protect.exe \
  35.     Wind.exe \
  36.     Ccright.exe \
  37.     InheritStack2.exe 
  38.  
  39. test: all 
  40.     Compose.exe  
  41.     Compose2.exe  
  42.     Inherit.exe  
  43.     Combined.exe  
  44.     Order.exe  
  45.     Hide.exe  
  46.     Ninherit.exe  
  47.     Car.exe  
  48.     InheritStack.exe  
  49.     Privinh.exe  
  50.     Protect.exe  
  51.     Wind.exe  
  52.     Ccright.exe  
  53.     InheritStack2.exe  
  54.  
  55. bugs: \
  56.     FName1.exe \
  57.     FName2.exe 
  58.  
  59. Compose.exe: Compose.obj 
  60.     $(CPP) $(OFLAG)Compose.exe Compose.obj 
  61.  
  62. Compose2.exe: Compose2.obj 
  63.     $(CPP) $(OFLAG)Compose2.exe Compose2.obj 
  64.  
  65. Inherit.exe: Inherit.obj 
  66.     $(CPP) $(OFLAG)Inherit.exe Inherit.obj 
  67.  
  68. Combined.exe: Combined.obj 
  69.     $(CPP) $(OFLAG)Combined.exe Combined.obj 
  70.  
  71. Order.exe: Order.obj 
  72.     $(CPP) $(OFLAG)Order.exe Order.obj 
  73.  
  74. Hide.exe: Hide.obj 
  75.     $(CPP) $(OFLAG)Hide.exe Hide.obj 
  76.  
  77. Ninherit.exe: Ninherit.obj 
  78.     $(CPP) $(OFLAG)Ninherit.exe Ninherit.obj 
  79.  
  80. Car.exe: Car.obj 
  81.     $(CPP) $(OFLAG)Car.exe Car.obj 
  82.  
  83. FName1.exe: FName1.obj 
  84.     $(CPP) $(OFLAG)FName1.exe FName1.obj 
  85.  
  86. FName2.exe: FName2.obj 
  87.     $(CPP) $(OFLAG)FName2.exe FName2.obj 
  88.  
  89. InheritStack.exe: InheritStack.obj ..\C13\Stack4.obj 
  90.     $(CPP) $(OFLAG)InheritStack.exe InheritStack.obj ..\C13\Stack4.obj 
  91.  
  92. Privinh.exe: Privinh.obj 
  93.     $(CPP) $(OFLAG)Privinh.exe Privinh.obj 
  94.  
  95. Protect.exe: Protect.obj 
  96.     $(CPP) $(OFLAG)Protect.exe Protect.obj 
  97.  
  98. Wind.exe: Wind.obj 
  99.     $(CPP) $(OFLAG)Wind.exe Wind.obj 
  100.  
  101. Ccright.exe: Ccright.obj 
  102.     $(CPP) $(OFLAG)Ccright.exe Ccright.obj 
  103.  
  104. InheritStack2.exe: InheritStack2.obj ..\C13\Stack4.obj 
  105.     $(CPP) $(OFLAG)InheritStack2.exe InheritStack2.obj ..\C13\Stack4.obj 
  106.  
  107.  
  108. Compose.obj: Compose.cpp Useful.h 
  109. Compose2.obj: Compose2.cpp Useful.h 
  110. Inherit.obj: Inherit.cpp Useful.h 
  111. Combined.obj: Combined.cpp 
  112. Order.obj: Order.cpp 
  113. Hide.obj: Hide.cpp 
  114. Ninherit.obj: Ninherit.cpp 
  115. Car.obj: Car.cpp 
  116. FName1.obj: FName1.cpp ..\require.h 
  117. FName2.obj: FName2.cpp ..\require.h 
  118. InheritStack.obj: InheritStack.cpp ..\C13\Stack4.h ..\require.h 
  119. Privinh.obj: Privinh.cpp 
  120. Protect.obj: Protect.cpp 
  121. Wind.obj: Wind.cpp 
  122. Ccright.obj: Ccright.cpp 
  123. InheritStack2.obj: InheritStack2.cpp ..\C13\Stack4.h ..\require.h 
  124.  
  125.